home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxfont1.h < prev    next >
C/C++ Source or Header  |  1997-03-22  |  4KB  |  106 lines

  1. /* Copyright (C) 1994, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxfont1.h */
  20. /* Type 1 font data definition (including Type 2 charstrings) */
  21.  
  22. /*
  23.  * This is the type-specific information for an Adobe Type 1 font.
  24.  * It also includes the information for Type 2 charstrings, because
  25.  * there isn't very much of it and it's less trouble to include here.
  26.  */
  27. /*
  28.  * The zone_table values should be ints, according to the Adobe
  29.  * specification, but some fonts have arbitrary floats here.
  30.  */
  31. #define zone_table(size)\
  32.     struct {\
  33.         int count;\
  34.         float values[(size)*2];\
  35.     }
  36. #define float_array(size)\
  37.     struct {\
  38.         int count;\
  39.         float values[size];\
  40.     }
  41. #define stem_table(size)\
  42.     float_array(size)
  43. typedef struct gs_type1_data_s gs_type1_data;
  44. /* The garbage collector really doesn't want the client data pointer */
  45. /* from a gs_type1_state to point to the gs_type1_data in the middle of */
  46. /* a gs_font_type1, so we make the client data pointer (which is passed */
  47. /* to the callback procedures) point to the gs_font_type1 itself. */
  48. #ifndef gs_font_type1_DEFINED
  49. #  define gs_font_type1_DEFINED
  50. typedef struct gs_font_type1_s gs_font_type1;
  51. #endif
  52. struct gs_type1_data_s {
  53.     /*int PaintType;*/        /* in gs_font_common */
  54.     int CharstringType;        /* 1 or 2 */
  55.     int (*subr_proc)(P4(gs_font_type1 *, int, bool, gs_const_string *));
  56.     int (*seac_proc)(P3(gs_font_type1 *, int, gs_const_string *));
  57.     int (*push_proc)(P3(gs_font_type1 *, const fixed *, int));
  58.     int (*pop_proc)(P2(gs_font_type1 *, fixed *));
  59.     void *proc_data;        /* data for subr_proc & seac_proc */
  60.     int lenIV;            /* -1 means no encryption */
  61.                     /* (undocumented feature!) */
  62.     uint subroutineNumberBias;    /* added to operand of callsubr */
  63.                     /* (undocumented feature!) */
  64.         /* Type 2 charstring additions */
  65.     uint gsubrNumberBias;        /* added to operand of callgsubr */
  66.     long initialRandomSeed;
  67.     fixed defaultWidthX;
  68.     fixed nominalWidthX;
  69.         /* For a description of the following hint information, */
  70.         /* see chapter 5 of the "Adobe Type 1 Font Format" book. */
  71.     int BlueFuzz;
  72.     float BlueScale;
  73.     float BlueShift;
  74. #define max_BlueValues 7
  75.     zone_table(max_BlueValues) BlueValues;
  76.     float ExpansionFactor;
  77.     bool ForceBold;
  78. #define max_FamilyBlues 7
  79.     zone_table(max_FamilyBlues) FamilyBlues;
  80. #define max_FamilyOtherBlues 5
  81.     zone_table(max_FamilyOtherBlues) FamilyOtherBlues;
  82.     int LanguageGroup;
  83. #define max_OtherBlues 5
  84.     zone_table(max_OtherBlues) OtherBlues;
  85.     bool RndStemUp;
  86.     stem_table(1) StdHW;
  87.     stem_table(1) StdVW;
  88. #define max_StemSnap 12
  89.     stem_table(max_StemSnap) StemSnapH;
  90.     stem_table(max_StemSnap) StemSnapV;
  91.         /* Additional information for Multiple Master fonts */
  92. #define max_WeightVector 16
  93.     float_array(max_WeightVector) WeightVector;
  94. };
  95. #define gs_type1_data_s_DEFINED
  96.  
  97. struct gs_font_type1_s {
  98.     gs_font_base_common;
  99.     gs_type1_data data;
  100. };
  101. extern_st(st_gs_font_type1);
  102. #define public_st_gs_font_type1()    /* in gstype1.c */\
  103.   gs_public_st_suffix_add1_final(st_gs_font_type1, gs_font_type1,\
  104.     "gs_font_type1", font_type1_enum_ptrs, font_type1_reloc_ptrs,\
  105.     gs_font_finalize, st_gs_font_base, data.proc_data)
  106.